From 02621e520994401dfae39e37048545247de0866b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sat, 11 Dec 2004 01:41:52 +0000 Subject: [PATCH] * Hide RC patrol markers when patrol is disabled or not allowed to patrol. --- includes/ChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ChangesList.php b/includes/ChangesList.php index 7e9807b2b9..96575d730d 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -352,7 +352,7 @@ class ChangesList { # M, N and ! (minor, new and unpatrolled) if ( $rc_minor ) { $s .= ' '.$message["minoreditletter"].''; } if ( $rc_type == RC_NEW ) { $s .= ''.$message["newpageletter"].''; } - if ( !$rc_patrolled ) { $s .= ' !'; } + if ( $unpatrolled ) { $s .= ' !'; } # Article link # If it's a new article, there is no diff link, but if it hasn't been -- 2.20.1